找传奇、传世资源到传世资源站!

C# 电源电压电流上位机 串口源码,rs232

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

 C# 电源电压电流上位机 源码
  C# 电源电压电流上位机 串口源码,rs232 C#网络编程-第1张 C# 电源电压电流上位机 串口源码,rs232 C#网络编程-第2张   public partial class Mainform : Form    {
        private const float VOLTAGE_MAX = 30.00f, CURRENT_MAX = 4.000f;
public enum MODE
{
MODE_VOLTAGE = 0x00,
MODE_CURRENT = 0x01,
}
private MODE currentMode = MODE.MODE_VOLTAGE;
        //与下位机通讯相关
        public enum COM_CMD
        {
            //M2S: master to slave cmd, S2M: slave to master
            USART_M2S_Output  = 0x01,  //输出控制(默认关)
            USART_M2S_Mode    = 0x02,  //输出模式切换(默认电压模式)
            USART_M2S_SetVal  = 0x03,  //Master2Slave设置期望值:[1-4]:电压; [5-8]:电流
            USART_M2S_Cal     = 0x04,  //进入校准模式(只在下位机开机前几秒内能够进入校准模式)
            USART_M2S_StepAdd = 0x05,  //步进加
            USART_M2S_StepSub = 0x06,  //步进减
            USART_M2S_FAN     = 0x07,  //风扇控制:[1]0关;1开;2自动(默认)
            USART_M2S_STATE   = 0x08,  //实时数据发送状态:[1]1发送数据 0停止发送
            USART_M2S_GetVal  = 0x09,  //获取前一次的设定值
            USART_S2M_PreVal  = 0x0A,  //Slave2Master返回前一次的设定值:[1-4]:电压值; [5-8]:电流值
            USART_S2M_RealVal = 0x0B,  //Slave2Master返回的实际值:[1-4]:电压值; [5-8]:电流值
            USART_S2M_RealTemp= 0x0C,  //Slave2Master返回温度值:[1-4]:当前温度值
        }
        private const byte USART_FRAMEHEAD = 0xAA, USART_FRAMETAIL = 0x55, USART_FRAMECTRL = 0xA5;

        private long m_TotalRxLostPackages = 0; //记录总的丢包数
        private long m_RxPackageDataCount = 0;  //记录接收到的一帧的字节数
        private const int m_MaxPackageSize = 4096;   //一帧最大的字节数
        private byte[] m_pRxBuf = new byte[m_MaxPackageSize]; //接收缓存

        float voltageSet = 0.0f, currentSet = 0.0f, voltageGet = 0.0f, currentGet = 0.0f;

        //绘图相关
        public struct CurveStruct
        {
            public PointPairList pointList;//曲线数据
            public Color         lineColor;//曲线颜色
            public SymbolType    lineStyle;//线型
            public string        curveName;//名称
            public LineItem      curve;    //曲线
            public float         scaleFactor;//比例系数
            public byte          lineWidth; //线宽
        }
        private Hashtable curveHashTable = new Hashtable();//用来保存所有的曲线        
        private GraphPane mGraphPane;
        private long tickStart = 0;
        double currentTime;
        //double previousTime = 0;
        CurveStruct mCurveStructVolSet = new CurveStruct();
        CurveStruct mCurveStructVolGet = new CurveStruct();
        CurveStruct mCurveStructCurSet = new CurveStruct();
        CurveStruct mCurveStructCurGet = new CurveStruct();

        //线程相关
        private Queue<byte> receiveByteQueue = new Queue<byte>();//串口缓存队列
        private Thread _dataParseThread = null;   //解析串口接收数据线程
        private bool _runDataParseThread = false; //决定接收线程是否退出
.
├── DC_POWER
│   ├── DC_POWER
│   │   ├── App.config
│   │   ├── DC_POWER.csproj
│   │   ├── Mainform.Designer.cs
│   │   ├── Mainform.cs
│   │   ├── Mainform.resx
│   │   ├── POWER_128.ico
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Resources
│   │   │   ├── btncheckoff1.png
│   │   │   ├── btncheckoff2.png
│   │   │   ├── btncheckoff3.png
│   │   │   ├── btncheckoff4.png
│   │   │   ├── btncheckoff5.png
│   │   │   ├── btncheckoff6.png
│   │   │   ├── btncheckon1.png
│   │   │   ├── btncheckon2.png
│   │   │   ├── btncheckon3.png
│   │   │   ├── btncheckon4.png
│   │   │   ├── btncheckon5.png
│   │   │   ├── btncheckon6.png
│   │   │   ├── shutdown.ico
│   │   │   ├── standby.ico
│   │   │   └── standby1.ico
│   │   ├── SlideButton.cs
│   │   ├── SlideButton.designer.cs
│   │   ├── SlideButton.resx
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── DC_POWER.exe
│   │   │   │   ├── DC_POWER.exe.config
│   │   │   │   ├── DC_POWER.pdb
│   │   │   │   ├── DC_POWER.vshost.exe
│   │   │   │   ├── DC_POWER.vshost.exe.config
│   │   │   │   ├── EnhancedGlassButton.dll
│   │   │   │   ├── ICON
│   │   │   │   │   ├── POWER_128.ico
│   │   │   │   │   ├── POWER_16.ico
│   │   │   │   │   ├── POWER_24.ico
│   │   │   │   │   ├── POWER_32.ico
│   │   │   │   │   ├── POWER_48.ico
│   │   │   │   │   ├── POWER_64.ico
│   │   │   │   │   ├── shutdown.ico
│   │   │   │   │   └── standby.ico
│   │   │   │   ├── Knob.dll
│   │   │   │   ├── LBIndustrialCtrls.dll
│   │   │   │   ├── Manometers.dll
│   │   │   │   ├── System.Windows.Forms.Ribbon35.dll
│   │   │   │   └── ZedGraph.dll
│   │   │   └── Release
│   │   │       ├── DC_POWER.exe
│   │   │       ├── DC_POWER.exe.config
│   │   │       ├── DC_POWER.pdb
│   │   │       ├── DC_POWER.vshost.exe
│   │   │       ├── DC_POWER.vshost.exe.config
│   │   │       ├── DC_POWER.vshost.exe.manifest
│   │   │       ├── EnhancedGlassButton.dll
│   │   │       ├── ICON
│   │   │       │   ├── POWER_128.ico
│   │   │       │   ├── POWER_16.ico
│   │   │       │   ├── POWER_24.ico
│   │   │       │   ├── POWER_32.ico
│   │   │       │   ├── POWER_48.ico
│   │   │       │   ├── POWER_64.ico
│   │   │       │   ├── shutdown.ico
│   │   │       │   └── standby.ico
│   │   │       ├── Knob.dll
│   │   │       ├── LBIndustrialCtrls.dll
│   │   │       ├── Manometers.dll
│   │   │       ├── System.Windows.Forms.Ribbon35.dll
│   │   │       └── ZedGraph.dll
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── DC_POWER.Mainform.resources
│   │       │   ├── DC_POWER.Properties.Resources.resources
│   │       │   ├── DC_POWER.csproj.FileListAbsolute.txt
│   │       │   ├── DC_POWER.csproj.GenerateResource.Cache
│   │       │   ├── DC_POWER.csprojResolveAssemblyReference.cache
│   │       │   ├── DC_POWER.exe
│   │       │   ├── DC_POWER.pdb
│   │       │   ├── DesignTimeResolveAssemblyReferences.cache
│   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │   ├── TempPE
│   │       │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │       │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │       │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │       └── Release
│   │           ├── DC_POWER.Mainform.resources
│   │           ├── DC_POWER.Properties.Resources.resources
│   │           ├── DC_POWER.SlideButton.resources
│   │           ├── DC_POWER.csproj.FileListAbsolute.txt
│   │           ├── DC_POWER.csproj.GenerateResource.Cache
│   │           ├── DC_POWER.csprojResolveAssemblyReference.cache
│   │           ├── DC_POWER.exe
│   │           ├── DC_POWER.pdb
│   │           ├── DesignTimeResolveAssemblyReferences.cache
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── TempPE
│   │           │   └── Properties.Resources.Designer.cs.dll
│   │           ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │           ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │           └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   ├── DC_POWER.sln
│   ├── DC_POWER.v11.suo
│   ├── ICON
│   │   ├── POWER_128.ico
│   │   ├── POWER_16.ico
│   │   ├── POWER_24.ico
│   │   ├── POWER_32.ico
│   │   ├── POWER_48.ico
│   │   ├── POWER_64.ico
│   │   ├── shutdown.ico
│   │   └── standby.ico
│   └── SlideButton
│       ├── Properties
│       │   ├── AssemblyInfo.cs
│       │   ├── Resources.Designer.cs
│       │   └── Resources.resx
│       ├── Resources
│       │   ├── btncheckoff1.png
│       │   ├── btncheckoff2.png
│       │   ├── btncheckoff3.png
│       │   ├── btncheckoff4.png
│       │   ├── btncheckoff5.png
│       │   ├── btncheckoff6.png
│       │   ├── btncheckon1.png
│       │   ├── btncheckon2.png
│       │   ├── btncheckon3.png
│       │   ├── btncheckon4.png
│       │   ├── btncheckon5.png
│       │   └── btncheckon6.png
│       ├── SlideButon.Designer.cs
│       ├── SlideButon.cs
│       ├── SlideButton.csproj
│       ├── bin
│       │   ├── Debug
│       │   └── Release
│       │       ├── SlideButton.dll
│       │       └── SlideButton.pdb
│       └── obj
│           ├── Debug
│           │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│           │   ├── TempPE
│           │   │   └── Properties.Resources.Designer.cs.dll
│           │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│           │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│           │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│           └── Release
│               ├── DesignTimeResolveAssemblyReferencesInput.cache
│               ├── SlideButton.Properties.Resources.resources
│               ├── SlideButton.csproj.FileListAbsolute.txt
│               ├── SlideButton.csproj.GenerateResource.Cache
│               ├── SlideButton.dll
│               ├── SlideButton.pdb
│               ├── TempPE
│               │   └── Properties.Resources.Designer.cs.dll
│               ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│               ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│               └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
└── [图] C# 电源电压电流上位机 串口源码,rs232.rar

26 directories, 141 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复